home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
sockv2
/
fileview.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
802b
|
45 lines
unit Fileview;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TViewDLG = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
Bevel1: TBevel;
Label1: TLabel;
FileName: TEdit;
GroupBox1: TGroupBox;
rbASCII: TRadioButton;
rbBINARY: TRadioButton;
rbEBCDIC: TRadioButton;
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
ViewDLG: TViewDLG;
implementation
{$R *.DFM}
procedure TViewDLG.FormCreate(Sender: TObject);
begin
rbASCII.Checked := True;
end;
procedure TViewDLG.FormShow(Sender: TObject);
begin
FileName.SetFocus;
end;
end.